home *** CD-ROM | disk | FTP | other *** search
/ Aminet 50 / Aminet 50 (2002)(GTI - Schatztruhe)[!][Aug 2002].iso / Aminet / text / edit / tecoc-146.lha / video.txt < prev    next >
Text File  |  1991-07-05  |  3KB  |  83 lines

  1. Command line 
  2. ------- ----
  3.  
  4. -NOPAGE    
  5.     Don't separate input into pages.  Instead,  treat form feeds
  6.     as normal characters.
  7. +nnn 
  8.     where nnn is any number of digits. Go to line number nnn and
  9.     set NOPAGE. Note this uses the UNIX end of line convention
  10.     for use with cc output &c. The non-unix line termination will
  11.     still be used for nL and other intrinsic TECO commands, this just
  12.     controls the starting line AT INVOCATION.
  13.  
  14. -SCROLL:nnn    
  15.     do nnn,7:w
  16.  
  17. -SCROLL:nnn:SEEALL
  18.     do nnn,7:W and 1,3:W
  19.  
  20. -INSPECT
  21.     Same as /INSPECT
  22.  
  23. -NOMEMORY
  24.     Same as /NOMEMORY
  25.  
  26.  
  27.  
  28. Video
  29. -----
  30.  
  31. ^W    Immediate mode command - try to place line containing dot in
  32.     centre of scope window
  33. -4W    Complete redraw of screen
  34. -1W    Stop refreshing scope before each prompt
  35. 1W    Start refreshing scope before each prompt
  36. 0W    refresh scope
  37. 3:w    Seeall Mode (set to 1 if SeeAll is on, 0 otherwise)
  38.     seeall is more unix style then you might expect
  39. 5:w    Hold mode is not properly implemented. I don't like it anyway.
  40. 7:W    Number of lines in command window. The size of the scope window
  41.     will be (Rows - 7:W (- 1 if ET&256))
  42. 8:w    Attribute for special characters. This is highly implementation
  43.     dependent (curses implementation dependent). Under SUN OS 4.1
  44.         0    - no marking
  45.         1    - underline
  46.         2    - reverse
  47.         4    - blink
  48.         8    - dim
  49.         16    - bold
  50.         128     - ALT_CHARSET
  51.     currently controls marking of     <CR>             `
  52.                           END OF PAGE          (BTEE/+)
  53. 9:W    Bit 0 - keypad support on
  54.     Bit 1 - do not do timeout escape sequence detection
  55.  
  56. ET&1    image mode - doesn't really do much with curses version
  57. ET&2    use scope for delete and control-U
  58. ET&4    accept lowercase input
  59. ET&32    read with no wait on control-T (unimplemented - easy though)
  60. ET&2048    reverse roles of BS and DEL (good if you use stty erase ^H,
  61.     in particular the key placement of BS is sometimes much easier
  62.     to get at then DEL). Should I have it detect the kill character
  63.     and automatically set this?
  64. ET&8192    accept ` as escape (for VT220 terminals)
  65. ET&16384 special VT200 mode
  66. ET&32768 trap control-C
  67.  
  68. EZ&1    if false VMS style versioning for backup files (multiple backups)
  69.     if true  only one backup level (foo, foo.bak)
  70. EZ&8    if TRUE use LARROW (<) for CR, if false use `
  71. EZ&16    if set then prefer audio beep else visual flash
  72. EZ&32    winline divider for scope
  73. EZ&128    if set DO NOT stop read on FF otherwise make pages as usual
  74. EZ&256    UNIX NL-convert LF to <CR><LF> on input and invert on output
  75. ED&512    controls scope display. If set will use VT100 line drawing
  76.     characters for CR and LF (in non-scope mode). May degrade
  77.     performance.
  78. EZ&2048 if set use BTEE for end of buffer, else use DIAMOND
  79.     (desirable for pathological terminal types)
  80. EZ&8192    don't show CR in scope - closer to TECO-11,  but really
  81.     not as good in my opinion (Mark Henderson)
  82.  
  83.